home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2002-251.nasl < prev    next >
Text File  |  2005-01-14  |  4KB  |  115 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12332);
  11.  script_version ("$Revision: 1.4 $");
  12.  script_cve_id("CAN-2002-0839", "CAN-2002-0843", "CVE-2002-0840", "CVE-2002-1157");
  13.  
  14.  name["english"] = "RHSA-2002-251: apache";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated apache and httpd packages are available which fix a number of
  21.   security issues for Red Hat Linux Advanced Server 2.1.
  22.  
  23.   [Updated 06 Feb 2003]
  24.   Added fixed packages for Advanced Workstation 2.1
  25.  
  26.   The Apache HTTP server is a powerful, full-featured, efficient, and
  27.   freely-available Web server.
  28.  
  29.   Buffer overflows in the ApacheBench support program (ab.c) in Apache
  30.   versions prior to 1.3.27 allow a malicious Web server to cause a denial of
  31.   service and possibly execute arbitrary code via a long response. The
  32.   Common Vulnerabilities and Exposures project has assigned the name
  33.   CAN-2002-0843 to this issue.
  34.  
  35.   Two cross-site scripting vulnerabilities are present in the error pages
  36.   for the default "404 Not Found" error, and for the error response when a
  37.   plain HTTP request is received on an SSL port. Both of these issues are
  38.   only exploitable if the "UseCanonicalName" setting has been changed to
  39.   "Off", and wildcard DNS is in use. These issues would allow remote
  40.   attackers to execute scripts as other Web page visitors, for instance, to
  41.   steal cookies. These issues affect versions of Apache 1.3 before 1.3.26,
  42.   and versions of mod_ssl before 2.8.12. The Common Vulnerabilities and
  43.   Exposures project has assigned the names CAN-2002-0840 and CAN-2002-1157 to
  44.   these issues.
  45.  
  46.   The shared memory scoreboard in the HTTP daemon for Apache 1.3, prior to
  47.   version 1.3.27, allowed a user running as the "apache" UID to send a
  48.   SIGUSR1 signal to any process as root, resulting in a denial of service
  49.   (process kill) or other such behavior that would not normally be allowed.
  50.   The Common Vulnerabilities and Exposures project has assigned the name
  51.   CAN-2002-0839 to this issue.
  52.  
  53.   All users of the Apache HTTP server are advised to upgrade to the
  54.   applicable errata packages. For Red Hat Linux Advanced Server 2.1 these
  55.   packages include Apache version 1.3.27 which is not vulnerable to
  56.   these issues.
  57.  
  58.   Note that the instructions in the "Solution" section of this errata contain
  59.   additional steps required to complete the upgrade process.
  60.  
  61.  
  62.  
  63.  
  64. Solution : http://rhn.redhat.com/errata/RHSA-2002-251.html
  65. Risk factor : High';
  66.  
  67.  script_description(english:desc["english"]);
  68.  
  69.  summary["english"] = "Check for the version of the apache packages";
  70.  script_summary(english:summary["english"]);
  71.  
  72.  script_category(ACT_GATHER_INFO);
  73.  
  74.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  75.  family["english"] = "Red Hat Local Security Checks";
  76.  script_family(english:family["english"]);
  77.  
  78.  script_dependencies("ssh_get_info.nasl");
  79.  
  80.  script_require_keys("Host/RedHat/rpm-list");
  81.  exit(0);
  82. }
  83.  
  84. include("rpm.inc");
  85. if ( rpm_check( reference:"apache-1.3.27-2", release:"RHEL2.1") )
  86. {
  87.  security_hole(0);
  88.  exit(0);
  89. }
  90. if ( rpm_check( reference:"apache-devel-1.3.27-2", release:"RHEL2.1") )
  91. {
  92.  security_hole(0);
  93.  exit(0);
  94. }
  95. if ( rpm_check( reference:"apache-manual-1.3.27-2", release:"RHEL2.1") )
  96. {
  97.  security_hole(0);
  98.  exit(0);
  99. }
  100. if ( rpm_check( reference:"mod_ssl-2.8.12-2", release:"RHEL2.1") )
  101. {
  102.  security_hole(0);
  103.  exit(0);
  104. }
  105.  
  106. if ( rpm_exists(rpm:"apache-", release:"RHEL2.1") )
  107. {
  108.  set_kb_item(name:"CAN-2002-0839", value:TRUE);
  109.  set_kb_item(name:"CAN-2002-0843", value:TRUE);
  110.  set_kb_item(name:"CVE-2002-0840", value:TRUE);
  111.  set_kb_item(name:"CVE-2002-1157", value:TRUE);
  112. }
  113.  
  114. set_kb_item(name:"RHSA-2002-251", value:TRUE);
  115.